home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / FDF101.ARJ / CMP.H < prev    next >
Text File  |  1992-04-29  |  336b  |  17 lines

  1. /*
  2.  * cmp.h
  3.  *
  4.  * prototypes for cmp.c, file comparison and auxiliary memory allocation
  5.  * functions.
  6.  *
  7.  * Roy Bixler
  8.  * March 16, 1991
  9.  */
  10.  
  11.  
  12.  
  13. /* cmp.c */
  14. unsigned int alloc_file_buffers(char **buf1, char **buf2, long file_size);
  15. int do_compare_files(int file1, int file2);
  16. int compare_files(char *file1, char *file2);
  17.